/*
**  Footer
*/

footer {
    height: auto;
    width: 100%;
    display: flex;
    margin-top: 50px;
    background-color: var( --dark );
    color: #ccc;
    padding-top: 30px;
    padding-bottom: 30px;
}

footer .company-info {
    width: 25%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
}


footer .company-info .logo {
    height: 30%;
    width: auto;
}


footer .company-title {
    font-size: 20px;
    font-family: Roboto-Medium;
    margin-top: 2px;
    color: var( --light-gray );
}



footer .navigation-links {
    width: 25%;
}

footer li {
    font-family: Roboto-Medium;
    font-size: 20px;
    color: #ccc;
    margin-top: 5px;
}


footer .legal-links {
    width: 25%;
}



.newsletter-column {
    display: flex;
    flex-direction: column;
}
.newsletter-column h3 {
    color: #e0e3ef;
    font-family: Roboto-Bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.newsletter-column p {
    color: #e0e3ef;
    font-family: Roboto;
    font-size: 20px;
    margin-left: 0px;
    margin-bottom: 5px;
}

.newsletter-column input[type="text"] {
    background-color: #e0e3ef;
    color: black;
    font-size: 20px;
    font-family: Roboto;
    padding: 10px;
}


.newsletter-column input[type="text"]:hover {
    background-color: white;
}

.newsletter-column input[type="submit"] {
    background-color: var(--light);
    color: navy;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: Roboto-Bold;
    font-size: 16px;
}


